home *** CD-ROM | disk | FTP | other *** search
/ Softdisk for Windows 42 / Softdisk for Windows 42.iso / QUARRY / QUARRY.EXE / QUARRY.dxr / 00025_CHECKALLMOVEBLUE.ls < prev    next >
Encoding:
Text File  |  1998-01-01  |  342 b   |  15 lines

  1. on CHECKALLMOVEBLUE
  2.   global GRIDH, GRIDV, done
  3.   set done to 1
  4.   repeat with H = 1 to 140
  5.     if getAt(GRIDV, H) = 2 then
  6.       if getAt(GRIDV, H + 14) = 0 then
  7.         set done to 0
  8.       end if
  9.       if (getAt(GRIDH, H) <> getAt(GRIDH, 14)) and (getAt(GRIDV, H + 1) = 0) then
  10.         set done to 0
  11.       end if
  12.     end if
  13.   end repeat
  14. end
  15.